section {
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
    background: linear-gradient(135deg, #fff8e1, #fce4b3);
    border-left: 5px solid #c69c6d;
    border-radius: 12px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

section:hover {
    transform: scale(1.01);
    box-shadow: 4px 6px 18px rgba(0, 0, 0, 0.2);
}
